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.
This commit is contained in:
Dan Buch
2012-03-09 00:24:48 -05:00
parent ec6d9d5146
commit 8ad33d18b7
10 changed files with 123 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
one:
ip: MyString
two:
ip: MyString

View File

@@ -0,0 +1,13 @@
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