preek 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/preek/cli.rb +2 -2
- data/lib/preek/version.rb +1 -1
- data/spec/cli_spec.rb +12 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5aed7619266d23f50974bc835c2ce37a3ce50838
|
4
|
+
data.tar.gz: 3a1a111b77ddb81b401d5cc843d97e6e390dc213
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bf532309c7c3ac351a2c2d4a9af0b202a38c6060209b9b92cdaa81d44bc8120c21cb51a3934b71e3f00d8d9c0b4f70038da1b1827e3669fe98906243d0a255d
|
7
|
+
data.tar.gz: 5157bab1bf7bb8f6c4ebb82efc0e4dd4ea6554efd7b6f8405d4f2779d258b8f64855840f0dac224ee927e450aad54c6a7ee29bf04a16b1c1c40c538f785e8715
|
data/lib/preek/cli.rb
CHANGED
data/lib/preek/version.rb
CHANGED
data/spec/cli_spec.rb
CHANGED
@@ -161,11 +161,19 @@ describe Preek::CLI do
|
|
161
161
|
|
162
162
|
describe 'Git' do
|
163
163
|
Given(:cli) { Preek::CLI.new }
|
164
|
-
Given(:git_output){" M .travis.yml\n M Gemfile\n M lib/random/file.rb\n M preek.gemspec\n"}
|
165
164
|
Given{cli.stub(:git_status).and_return(git_output)}
|
166
|
-
Given{cli.should_receive(:smell).with('lib/random/file.rb')}
|
167
|
-
|
168
165
|
When{cli.git}
|
169
|
-
|
166
|
+
|
167
|
+
context 'with ruby file' do
|
168
|
+
Given(:git_output){" M .travis.yml\n M Gemfile\n M lib/random/file.rb\n M preek.gemspec\n"}
|
169
|
+
Given{cli.should_receive(:smell).with('lib/random/file.rb')}
|
170
|
+
Then{}
|
171
|
+
end
|
172
|
+
|
173
|
+
context 'without ruby file' do
|
174
|
+
Given(:git_output){" M .travis.yml\n M Gemfile\n M preek.gemspec\n"}
|
175
|
+
Given{cli.should_not receive(:smell)}
|
176
|
+
Then{}
|
177
|
+
end
|
170
178
|
end
|
171
179
|
end
|