box-o-sand/rails/map-mash/spec/models/requester_spec.rb
Dan Buch 8ad33d18b7 Making more messes with mashes, maps, and requesters. Maybe a teensy
bit closer on the tournament pairing algorithm (???)  ActiveRecord
associations are kind of a pain, btw.
2012-03-09 00:24:48 -05:00

14 lines
244 B
Ruby

require 'spec_helper'
describe Requester do
before(:each) do
@valid_attributes = {
:ip => "value for ip"
}
end
it "should create a new instance given valid attributes" do
Requester.create!(@valid_attributes)
end
end