Re-namespacing a bit to clear out some fairly old stuff from the top level

This commit is contained in:
Dan Buch
2013-01-22 19:10:10 -05:00
parent ab43fb0146
commit 92f7543872
485 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
require 'spec_helper'
describe Map do
before(:each) do
@valid_attributes = {
:name => "value for name"
}
end
it "should create a new instance given valid attributes" do
Map.create!(@valid_attributes)
end
end

View File

@@ -0,0 +1,11 @@
require 'spec_helper'
describe MashTournament do
before(:each) do
@valid_attributes = {:requester_id => 1}
end
it "should create a new instance given valid attributes" do
MashTournament.create!(@valid_attributes)
end
end

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