9ea67909cc
Add watchr and spork to speed up the test run. Please note that spork and watchr needs to start up separately. (See Gemfile for more information)
9 lines
154 B
Ruby
9 lines
154 B
Ruby
require "spec_helper"
|
|
|
|
describe Item do
|
|
# TODO: start writing tests
|
|
it "can be instanciate" do
|
|
Item.new.should be_an_instance_of(Item)
|
|
end
|
|
end
|
|
|