2012-03-09 13:06:25 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe MashTournament do
|
|
|
|
before(:each) do
|
2012-03-11 02:13:03 +00:00
|
|
|
@valid_attributes = {:requester_id => 1}
|
2012-03-09 13:06:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should create a new instance given valid attributes" do
|
|
|
|
MashTournament.create!(@valid_attributes)
|
|
|
|
end
|
|
|
|
end
|