This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/spec/item_spec.rb
Aaron Mueller 9ea67909cc Replace the ruby unit testing framework with rspec
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)
2012-06-06 22:41:31 +02:00

10 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