Skip to content

Instantly share code, notes, and snippets.

@damoncali
Forked from tenderlove/person_test.rb
Created September 16, 2011 14:12
Show Gist options
  • Save damoncali/1222209 to your computer and use it in GitHub Desktop.
Save damoncali/1222209 to your computer and use it in GitHub Desktop.
Use minitest/spec with Rails 3
require 'test_helper'
require 'minitest/autorun'
class 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
describe 'holy shit' do
fixtures :people
it 'does awesome stuff' do
1.must_equal 1
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