Skip to content

Commit

Permalink
Fix rspec version
Browse files Browse the repository at this point in the history
  • Loading branch information
Genki Sugawara committed Apr 25, 2015
1 parent 1a21200 commit 103adf2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion roadworker.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ Gem::Specification.new do |spec|
spec.add_dependency "systemu"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 2.14.1"
spec.add_development_dependency "rspec", ">= 3.0.0"
spec.add_development_dependency "rspec-instafail"
spec.add_development_dependency "rubydns", "~> 0.8.5"
spec.add_development_dependency "coveralls"
spec.add_development_dependency "transpec"
end
10 changes: 5 additions & 5 deletions spec/roadworker_mix_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
EOS
end

expect(updated).to be_false
expect(updated).to be_falsey

zones = @route53.hosted_zones.to_a.sort_by {|i| i.name }
expect(zones.length).to eq(2)
Expand Down Expand Up @@ -293,7 +293,7 @@
EOS
end

expect(updated).to be_false
expect(updated).to be_falsey

zones = @route53.hosted_zones.to_a.sort_by {|i| i.name }
expect(zones.length).to eq(2)
Expand Down Expand Up @@ -449,7 +449,7 @@
EOS
end

expect(updated).to be_true
expect(updated).to be_truthy

zones = @route53.hosted_zones.to_a.sort_by {|i| i.name }
expect(zones.length).to eq(3)
Expand Down Expand Up @@ -602,7 +602,7 @@
EOS
end

expect(updated).to be_true
expect(updated).to be_truthy

zones = @route53.hosted_zones.to_a.sort_by {|i| i.name }
expect(zones.length).to eq(2)
Expand Down Expand Up @@ -735,7 +735,7 @@
EOS
end

expect(updated).to be_true
expect(updated).to be_truthy

zones = @route53.hosted_zones.to_a.sort_by {|i| i.name }
expect(zones.length).to eq(3)
Expand Down

0 comments on commit 103adf2

Please sign in to comment.