Skip to content

Commit

Permalink
Fix broken spec on 1.8.7 and enable 1.9.3 on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
seancribbs committed Jan 10, 2012
1 parent e9e74f0 commit f08ae40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
- jruby
2 changes: 1 addition & 1 deletion spec/webmachine/adapters/mongrel_spec.rb
Expand Up @@ -13,6 +13,6 @@
end

it "implements #run" do
described_class.instance_methods(false).should include :run
described_class.instance_methods(false).map {|m| m.to_sym }.should include :run
end
end
2 changes: 1 addition & 1 deletion spec/webmachine/adapters/webrick_spec.rb
Expand Up @@ -13,6 +13,6 @@
end

it "implements #run" do
described_class.instance_methods(false).should include :run
described_class.instance_methods(false).map {|m| m.to_sym }.should include :run
end
end

0 comments on commit f08ae40

Please sign in to comment.