Move old specs into riak subdir

This commit is contained in:
Garret Alfert
2016-01-20 15:32:44 -05:00
parent 1a8ba680ab
commit 77bd54b009
4 changed files with 1 additions and 0 deletions

15
spec/riak/app_spec.rb Normal file
View File

@@ -0,0 +1,15 @@
require_relative "spec_helper"
describe "App" do
include Rack::Test::Methods
def app
LiquorCabinet
end
it "returns 404 on non-existing routes" do
get "/virginmargarita"
last_response.status.must_equal 404
end
end