simp-rake-helpers 5.1.4 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/lib/simp/componentinfo.rb +227 -0
  4. data/lib/simp/rake/helpers/version.rb +1 -1
  5. data/lib/simp/rake/pkg.rb +115 -0
  6. data/lib/simp/rake/pupmod/helpers.rb +2 -2
  7. data/lib/simp/relchecks.rb +172 -0
  8. data/lib/simp/rpm.rb +2 -0
  9. data/spec/acceptance/nodesets/default.yml +2 -0
  10. data/spec/acceptance/pkg_rpm_spec.rb +42 -133
  11. data/spec/lib/simp/componentinfo_changelog_regex_spec.rb +120 -0
  12. data/spec/lib/simp/componentinfo_spec.rb +278 -0
  13. data/spec/lib/simp/files/componentinfo_spec/asset_missing_release/build/asset_missing_release.spec +36 -0
  14. data/spec/lib/simp/files/componentinfo_spec/asset_missing_version/build/asset_missing_version.spec +36 -0
  15. data/spec/lib/simp/files/componentinfo_spec/asset_with_dist_in_release/build/asset_with_dist_in_release.spec +31 -0
  16. data/spec/lib/simp/files/componentinfo_spec/asset_with_multiple_packages/build/asset_with_multiple_packages.spec +64 -0
  17. data/spec/lib/simp/files/componentinfo_spec/asset_with_single_package/build/asset_with_single_package.spec +37 -0
  18. data/spec/lib/simp/files/componentinfo_spec/asset_with_two_spec_files/build/asseta.spec +43 -0
  19. data/spec/lib/simp/files/componentinfo_spec/asset_with_two_spec_files/build/assetb.spec +43 -0
  20. data/spec/lib/simp/files/componentinfo_spec/asset_without_spec_file/build/README +1 -0
  21. data/spec/lib/simp/files/componentinfo_spec/module/CHANGELOG +14 -0
  22. data/spec/lib/simp/files/componentinfo_spec/module/metadata.json +44 -0
  23. data/spec/lib/simp/files/componentinfo_spec/module_missing_version_metadata/CHANGELOG +14 -0
  24. data/spec/lib/simp/files/componentinfo_spec/module_missing_version_metadata/metadata.json +43 -0
  25. data/spec/lib/simp/files/componentinfo_spec/module_with_date_misordered_entries/CHANGELOG +14 -0
  26. data/spec/lib/simp/files/componentinfo_spec/module_with_date_misordered_entries/metadata.json +44 -0
  27. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_entries/CHANGELOG +8 -0
  28. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_entries/metadata.json +44 -0
  29. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_weekday_entry/CHANGELOG +14 -0
  30. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_weekday_entry/metadata.json +44 -0
  31. data/spec/lib/simp/files/componentinfo_spec/module_with_malformed_metadata/CHANGELOG +14 -0
  32. data/spec/lib/simp/files/componentinfo_spec/module_with_malformed_metadata/metadata.json +44 -0
  33. data/spec/lib/simp/files/componentinfo_spec/module_with_version_misordered_entries/CHANGELOG +14 -0
  34. data/spec/lib/simp/files/componentinfo_spec/module_with_version_misordered_entries/metadata.json +44 -0
  35. data/spec/lib/simp/files/componentinfo_spec/module_without_changelog/metadata.json +44 -0
  36. data/spec/lib/simp/files/relchecks_compare_latest_tag_spec/module/CHANGELOG +5 -0
  37. data/spec/lib/simp/files/relchecks_compare_latest_tag_spec/module/metadata.json +44 -0
  38. data/spec/lib/simp/files/relchecks_compare_latest_tag_spec/module_without_changelog/metadata.json +44 -0
  39. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_mismatched_release/build/asset_mismatched_release.spec +35 -0
  40. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_missing_changelog/build/asset_missing_changelog.spec +27 -0
  41. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_dist_in_release/build/asset_with_dist_in_release.spec +31 -0
  42. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_multiple_packages/build/asset_with_multiple_packages.spec +64 -0
  43. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_single_package/build/asset_with_single_package.spec +35 -0
  44. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_without_spec_file/build/README +1 -0
  45. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_misordered_entries/CHANGELOG +14 -0
  46. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_misordered_entries/metadata.json +44 -0
  47. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_multiple_entries/CHANGELOG +14 -0
  48. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_multiple_entries/metadata.json +44 -0
  49. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_newer_changelog_entry/CHANGELOG +14 -0
  50. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_newer_changelog_entry/metadata.json +44 -0
  51. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_no_entry_for_version/CHANGELOG +14 -0
  52. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_no_entry_for_version/metadata.json +44 -0
  53. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_single_entry/CHANGELOG +7 -0
  54. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_single_entry/metadata.json +44 -0
  55. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_without_changelog/metadata.json +44 -0
  56. data/spec/lib/simp/relchecks_compare_latest_tag_spec.rb +89 -0
  57. data/spec/lib/simp/relchecks_create_tag_changelog_spec.rb +143 -0
  58. metadata +51 -2
@@ -0,0 +1,89 @@
1
+ require 'simp/relchecks'
2
+ require 'spec_helper'
3
+
4
+ describe 'Simp::RelChecks.compare_latest_tag' do
5
+ let(:files_dir) {
6
+ File.join( File.dirname(__FILE__), 'files', File.basename(__FILE__, '.rb'))
7
+ }
8
+
9
+ let(:component_dir) { File.join(files_dir, 'module') }
10
+
11
+ context 'with no project errors' do
12
+ it 'reports no tags for a project with no tags' do
13
+ Simp::RelChecks.expects(:`).with('git fetch -t origin 2>/dev/null').returns("\n")
14
+ Simp::RelChecks.expects(:`).with('git tag -l').returns("\n")
15
+
16
+ expect{ Simp::RelChecks.compare_latest_tag(component_dir) }.
17
+ to output(" No tags exist from origin\n").to_stdout
18
+ end
19
+
20
+ it 'reports no new tag required when no files have changed' do
21
+ Simp::RelChecks.expects(:`).with('git fetch -t origin 2>/dev/null').returns("\n")
22
+ Simp::RelChecks.expects(:`).with('git tag -l').returns("1.0.0-pre\n1.0.0\n1.1.0\n")
23
+ Simp::RelChecks.expects(:`).with('git diff tags/1.1.0 --name-only').returns("\n")
24
+
25
+ msg = " No new tag required: No significant files have changed since '1.1.0' tag\n"
26
+ expect{ Simp::RelChecks.compare_latest_tag(component_dir) }.
27
+ to output(msg).to_stdout
28
+ end
29
+
30
+ it 'reports no new tag required when no significant files have changed' do
31
+ Simp::RelChecks.expects(:`).with('git fetch -t origin 2>/dev/null').returns("\n")
32
+ Simp::RelChecks.expects(:`).with('git tag -l').returns("1.0.0\nv1.0.1\n1.1.0\n")
33
+ Simp::RelChecks.expects(:`).with('git diff tags/1.1.0 --name-only').returns(
34
+ ".travis.yml\nRakefile\nGemfile.lock\nspec/some_spec.rb\ndoc/index.html\n")
35
+
36
+ msg = " No new tag required: No significant files have changed since '1.1.0' tag\n"
37
+ expect{ Simp::RelChecks.compare_latest_tag(component_dir) }.
38
+ to output(msg).to_stdout
39
+ end
40
+
41
+ it 'reports a new tag is required for significant changes with bumped version' do
42
+ Simp::RelChecks.expects(:`).with('git fetch -t origin 2>/dev/null').returns("\n")
43
+ Simp::RelChecks.expects(:`).with('git tag -l').returns("1.0.0\n1.1.0-RC01\n")
44
+ Simp::RelChecks.expects(:`).with('git diff tags/1.0.0 --name-only').returns(
45
+ "CHANGELOG\nmetadata.json\nmanifest/init.pp\n")
46
+
47
+ msg = <<-EOM
48
+ NOTICE: New tag of version '1.1.0' is required for 3 changed files:
49
+ * CHANGELOG
50
+ * metadata.json
51
+ * manifest/init.pp
52
+ EOM
53
+
54
+ expect{ Simp::RelChecks.compare_latest_tag(component_dir) }.
55
+ to output(msg).to_stdout
56
+ end
57
+ end
58
+
59
+ context 'with project errors' do
60
+ it 'fails when latest version < latest tag' do
61
+ Simp::RelChecks.expects(:`).with('git fetch -t origin 2>/dev/null').returns("\n")
62
+ Simp::RelChecks.expects(:`).with('git tag -l').returns("1.0.0\n1.2.0\n")
63
+ Simp::RelChecks.expects(:`).with('git diff tags/1.2.0 --name-only').returns(
64
+ "CHANGELOG\nmetadata.json\nmanifest/init.pp\n")
65
+
66
+ expect{ Simp::RelChecks.compare_latest_tag(component_dir) }.
67
+ to raise_error(/ERROR: Version regression. '1\.1\.0' < last tag '1\.2\.0'/)
68
+ end
69
+
70
+ it 'fails when significant file changes need a version bump' do
71
+ Simp::RelChecks.expects(:`).with('git fetch -t origin 2>/dev/null').returns("\n")
72
+ Simp::RelChecks.expects(:`).with('git tag -l').returns("1.0.0\n1.1.0\n")
73
+ Simp::RelChecks.expects(:`).with('git diff tags/1.1.0 --name-only').returns(
74
+ "manifest/init.pp\n")
75
+
76
+ expect{ Simp::RelChecks.compare_latest_tag(component_dir) }.
77
+ to raise_error(/ERROR: Version update beyond last tag '1.1.0' is required for 1 changed files:/)
78
+ end
79
+
80
+ # spot check just one of many failures handled by
81
+ # Simp::RelCheck.load_and_validate_changelog, as that method is
82
+ # extensively tested elsewhere.
83
+ it 'fails when module info cannot be loaded' do
84
+ comp_dir = File.join(files_dir, 'module_without_changelo')
85
+ expect{ Simp::RelChecks.compare_latest_tag(comp_dir) }.
86
+ to raise_error(/No RPM spec file found in/ )
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,143 @@
1
+ require 'simp/relchecks'
2
+ require 'spec_helper'
3
+
4
+ describe 'Simp::RelChecks.create_tag_changelog' do
5
+ let(:files_dir) {
6
+ File.join( File.dirname(__FILE__), 'files', File.basename(__FILE__, '.rb'))
7
+ }
8
+
9
+ describe '.create_tag_changelog' do
10
+ context 'with valid module input' do
11
+ it 'creates tag changelog from single changelog entry for latest version' do
12
+ component_dir = File.join(files_dir, 'module_with_single_entry')
13
+ module_changelog = Simp::RelChecks.create_tag_changelog(component_dir)
14
+ expected = <<EOM
15
+
16
+ Release of 3.8.0
17
+
18
+ * Tue Jun 20 2017 Mary Jones <mary.jones@simp.com> - 3.8.0
19
+ - Added a define, mod::instance
20
+ - Creates standalone connections with their own configurations
21
+ and services
22
+ - Adds systemd support
23
+ - Updated puppet requirement in metadata.json
24
+ EOM
25
+ expect(module_changelog).to eq expected
26
+ end
27
+
28
+ it 'creates tag changelog from multiple changelog entries for latest version' do
29
+ component_dir = File.join(files_dir, 'module_with_multiple_entries')
30
+ module_changelog = Simp::RelChecks.create_tag_changelog(component_dir)
31
+ expected = <<EOM
32
+
33
+ Release of 3.8.0
34
+
35
+ * Wed Nov 15 2017 Mary Jones <mary.jones@simp.com> - 3.8.0-0
36
+ - Disable deprecation warnings by default
37
+
38
+ * Mon Nov 06 2017 Tom Smith <tom.smith@simp.com> - 3.8.0-0
39
+ - Fixes split failure when "findmnt" does not exist on Linux
40
+ EOM
41
+ expect(module_changelog).to eq expected
42
+ end
43
+ end
44
+
45
+ context 'with invalid module input' do
46
+ it 'fails when module info cannot be loaded' do
47
+ component_dir = File.join(files_dir, 'module_without_changelog')
48
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
49
+ /No CHANGELOG file found in .*module_without_changelog/)
50
+ end
51
+
52
+ it 'fails if no valid entry for the version can be found' do
53
+ component_dir = File.join(files_dir, 'module_with_no_entry_for_version')
54
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
55
+ /No valid changelog entry for version 4.0.0 found/)
56
+ end
57
+
58
+ it 'fails if entry with newer version than metadata.json is found' do
59
+ component_dir = File.join(files_dir, 'module_with_newer_changelog_entry')
60
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
61
+ /Changelog entry for version > 3.8.0 found:/)
62
+ end
63
+
64
+ it "fails if dates are out of order for the version's changelog entries" do
65
+ component_dir = File.join(files_dir, 'module_with_misordered_entries')
66
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
67
+ /ERROR: Changelog entries are not properly date ordered/)
68
+ end
69
+ end
70
+
71
+ context 'with valid asset input' do
72
+ # since much of the changelog parsing code is shared between
73
+ # module and asset changelog processing, here we will focus on
74
+ # the parts of the code unique to asset changelog extraction
75
+ it 'creates tag changelog from a changelog entry for latest version for a single-package spec file' do
76
+ component_dir = File.join(files_dir, 'asset_with_single_package')
77
+ asset_changelog = Simp::RelChecks.create_tag_changelog(component_dir)
78
+ expected = <<EOM
79
+
80
+ Release of 1.0.0
81
+
82
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-0
83
+ - Single package
84
+ EOM
85
+ expect(asset_changelog).to eq expected
86
+ end
87
+
88
+ it 'creates tag changelog from primary package changelog entries for latest version for a multi-package spec file' do
89
+ component_dir = File.join(files_dir, 'asset_with_multiple_packages')
90
+ asset_changelog = Simp::RelChecks.create_tag_changelog(component_dir)
91
+ expected = <<EOM
92
+
93
+ Release of 4.0.3
94
+
95
+ * Thu Aug 31 2017 Jane Doe <jane.doe@simp.com> - 4.0.3
96
+ - Fix bug Z
97
+ - Thanks to Lilia Smith for the PR!
98
+
99
+ * Mon Jun 12 2017 Jane Doe <jane.doe@simp.com> - 4.0.3
100
+ - Prompt user for new input
101
+ EOM
102
+ expect(asset_changelog).to eq expected
103
+ end
104
+
105
+ it 'creates tag changelog from a changelog entry for latest version when release includes distribution' do
106
+ component_dir = File.join(files_dir, 'asset_with_dist_in_release')
107
+ asset_changelog = Simp::RelChecks.create_tag_changelog(component_dir)
108
+ expected = <<EOM
109
+
110
+ Release of 1.0.0
111
+
112
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-0
113
+ - Package with distribution in release tag
114
+ EOM
115
+ expect(asset_changelog).to eq expected
116
+ end
117
+ end
118
+
119
+ context 'with invalid asset input' do
120
+
121
+ it 'fails when asset info cannot be loaded' do
122
+ component_dir = File.join(files_dir, 'asset_without_spec_file')
123
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
124
+ /No RPM spec file found in .*asset_without_spec_file\/build/)
125
+ end
126
+
127
+ it 'fails when changelog is missing from asset RPM spec file' do
128
+ #NOTE: %changelog is optional in a spec file. So this error
129
+ # is not found when the changelog is read from the spec
130
+ # file, but, instead, during post-validation
131
+ component_dir = File.join(files_dir, 'asset_missing_changelog')
132
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
133
+ /No valid changelog entry for version 1.0.0 found/)
134
+ end
135
+
136
+ it 'fails when release tag and release in changelog from asset RPM spec file are mismatched' do
137
+ component_dir = File.join(files_dir, 'asset_mismatched_release')
138
+ expect{ Simp::RelChecks.create_tag_changelog(component_dir) }.to raise_error(
139
+ /Version release does not match/)
140
+ end
141
+ end
142
+ end
143
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simp-rake-helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.4
4
+ version: 5.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Tessmer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-11-28 00:00:00.000000000 Z
12
+ date: 2017-12-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -403,6 +403,7 @@ files:
403
403
  - README.md
404
404
  - Rakefile
405
405
  - bin/simp_rake_helpers
406
+ - lib/simp/componentinfo.rb
406
407
  - lib/simp/rake.rb
407
408
  - lib/simp/rake/build/auto.rb
408
409
  - lib/simp/rake/build/build.rb
@@ -431,6 +432,7 @@ files:
431
432
  - lib/simp/rake/pkg.rb
432
433
  - lib/simp/rake/pupmod/helpers.rb
433
434
  - lib/simp/rake/rubygem.rb
435
+ - lib/simp/relchecks.rb
434
436
  - lib/simp/rpm.rb
435
437
  - lib/simp/yum.rb
436
438
  - spec/acceptance/files/simplib/CHANGELOG
@@ -478,7 +480,52 @@ files:
478
480
  - spec/acceptance/files/testpackage_without_changelog/metadata.json
479
481
  - spec/acceptance/nodesets/default.yml
480
482
  - spec/acceptance/pkg_rpm_spec.rb
483
+ - spec/lib/simp/componentinfo_changelog_regex_spec.rb
484
+ - spec/lib/simp/componentinfo_spec.rb
481
485
  - spec/lib/simp/files/build/testpackage.spec
486
+ - spec/lib/simp/files/componentinfo_spec/asset_missing_release/build/asset_missing_release.spec
487
+ - spec/lib/simp/files/componentinfo_spec/asset_missing_version/build/asset_missing_version.spec
488
+ - spec/lib/simp/files/componentinfo_spec/asset_with_dist_in_release/build/asset_with_dist_in_release.spec
489
+ - spec/lib/simp/files/componentinfo_spec/asset_with_multiple_packages/build/asset_with_multiple_packages.spec
490
+ - spec/lib/simp/files/componentinfo_spec/asset_with_single_package/build/asset_with_single_package.spec
491
+ - spec/lib/simp/files/componentinfo_spec/asset_with_two_spec_files/build/asseta.spec
492
+ - spec/lib/simp/files/componentinfo_spec/asset_with_two_spec_files/build/assetb.spec
493
+ - spec/lib/simp/files/componentinfo_spec/asset_without_spec_file/build/README
494
+ - spec/lib/simp/files/componentinfo_spec/module/CHANGELOG
495
+ - spec/lib/simp/files/componentinfo_spec/module/metadata.json
496
+ - spec/lib/simp/files/componentinfo_spec/module_missing_version_metadata/CHANGELOG
497
+ - spec/lib/simp/files/componentinfo_spec/module_missing_version_metadata/metadata.json
498
+ - spec/lib/simp/files/componentinfo_spec/module_with_date_misordered_entries/CHANGELOG
499
+ - spec/lib/simp/files/componentinfo_spec/module_with_date_misordered_entries/metadata.json
500
+ - spec/lib/simp/files/componentinfo_spec/module_with_invalid_entries/CHANGELOG
501
+ - spec/lib/simp/files/componentinfo_spec/module_with_invalid_entries/metadata.json
502
+ - spec/lib/simp/files/componentinfo_spec/module_with_invalid_weekday_entry/CHANGELOG
503
+ - spec/lib/simp/files/componentinfo_spec/module_with_invalid_weekday_entry/metadata.json
504
+ - spec/lib/simp/files/componentinfo_spec/module_with_malformed_metadata/CHANGELOG
505
+ - spec/lib/simp/files/componentinfo_spec/module_with_malformed_metadata/metadata.json
506
+ - spec/lib/simp/files/componentinfo_spec/module_with_version_misordered_entries/CHANGELOG
507
+ - spec/lib/simp/files/componentinfo_spec/module_with_version_misordered_entries/metadata.json
508
+ - spec/lib/simp/files/componentinfo_spec/module_without_changelog/metadata.json
509
+ - spec/lib/simp/files/relchecks_compare_latest_tag_spec/module/CHANGELOG
510
+ - spec/lib/simp/files/relchecks_compare_latest_tag_spec/module/metadata.json
511
+ - spec/lib/simp/files/relchecks_compare_latest_tag_spec/module_without_changelog/metadata.json
512
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_mismatched_release/build/asset_mismatched_release.spec
513
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_missing_changelog/build/asset_missing_changelog.spec
514
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_dist_in_release/build/asset_with_dist_in_release.spec
515
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_multiple_packages/build/asset_with_multiple_packages.spec
516
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_single_package/build/asset_with_single_package.spec
517
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_without_spec_file/build/README
518
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_misordered_entries/CHANGELOG
519
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_misordered_entries/metadata.json
520
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_multiple_entries/CHANGELOG
521
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_multiple_entries/metadata.json
522
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_newer_changelog_entry/CHANGELOG
523
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_newer_changelog_entry/metadata.json
524
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_no_entry_for_version/CHANGELOG
525
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_no_entry_for_version/metadata.json
526
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_single_entry/CHANGELOG
527
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_single_entry/metadata.json
528
+ - spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_without_changelog/metadata.json
482
529
  - spec/lib/simp/files/simp_build/src/assets/simp/build/simp.spec
483
530
  - spec/lib/simp/files/testpackage-1-0.el7.noarch.rpm
484
531
  - spec/lib/simp/files/testpackage-1-0.noarch.rpm
@@ -535,6 +582,8 @@ files:
535
582
  - spec/lib/simp/rake/pupmod/fixtures/simpmod/spec/spec_helper_acceptance.rb
536
583
  - spec/lib/simp/rake/pupmod/helpers_spec.rb
537
584
  - spec/lib/simp/rake_spec.rb
585
+ - spec/lib/simp/relchecks_compare_latest_tag_spec.rb
586
+ - spec/lib/simp/relchecks_create_tag_changelog_spec.rb
538
587
  - spec/lib/simp/rpm_spec.rb
539
588
  - spec/spec_helper.rb
540
589
  - spec/spec_helper_acceptance.rb