Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update supported rubies #9

Merged
merged 3 commits into from Apr 22, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
Gemfile.lock
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,4 +1,4 @@
rvm:
- 1.9.2
- 1.9.3
- 2.1
- 2.2
- ruby-head
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gemspec
2 changes: 2 additions & 0 deletions minitest-firemock.gemspec
Expand Up @@ -12,4 +12,6 @@ Gem::Specification.new do |gem|
gem.test_files = `git ls-files -- test/*`.split("\n")
gem.name = "minitest-firemock"
gem.require_paths = ["lib"]

gem.add_dependency 'minitest'
end
2 changes: 1 addition & 1 deletion test/unit/firemock_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'
require 'minitest/fire_mock'

class FireMockTest < Minitest::Test
class FireMockTest < MiniTest::Test
def test_mock_is_valid_when_not_defined
mock = Minitest::FireMock.new('NotDefinedConstant')
mock.expect(:defined_method, 42)
Expand Down