-
-
Save eightbitraptor/1232669 to your computer and use it in GitHub Desktop.
Use minitest/spec with Rails 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test_helper' | |
require 'minitest/autorun' | |
module Tenderlove | |
class Spec < MiniTest::Spec | |
include ActiveSupport::Testing::SetupAndTeardown | |
include ActiveRecord::TestFixtures | |
alias :method_name :__name__ if defined? :__name__ | |
self.fixture_path = File.join(Rails.root, 'test', 'fixtures') | |
end | |
end | |
class PersonTest < Tenderlove::Spec | |
fixtures :people | |
describe 'holy shit' do | |
it 'does awesome stuff' do | |
1.must_equal 1 | |
end | |
end | |
it 'finds a fixture' do | |
people(:one).name.must_equal 'America!' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment