Skip to content

Commit

Permalink
Fix the test requires
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse McGinnis committed Jul 24, 2014
1 parent a783d57 commit ab4be22
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/lib/roleable_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
subject{ Roleable }

it 'should not raise an error' do
subject.assert_nothing_raised
subject
end

it 'does stuff' do
pending
skip('no tests yet')
end
end
7 changes: 5 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
require 'coveralls'
Coveralls.wear!

require 'minitest/pride' # awesome colorful output
require 'minitest/reporters' # fancier output format
require 'minitest/spec'
require 'minitest/autorun'
require 'minitest/pride'
require 'minitest/reporters'

require 'pry'

require 'roleable'

0 comments on commit ab4be22

Please sign in to comment.