mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
8 lines
187 B
Ruby
8 lines
187 B
Ruby
|
|
require File.dirname(__FILE__) + '/../spec_helper'
|
||
|
|
|
||
|
|
describe "A sample spec", :type => :model do
|
||
|
|
fixtures :animals
|
||
|
|
it "should pass" do
|
||
|
|
animals(:pig).name.should == "Pig"
|
||
|
|
end
|
||
|
|
end
|