adding launchy

This commit is contained in:
Mike McCabe
2013-10-09 11:07:13 -04:00
parent d13f3d7f44
commit a93159c9f2
13 changed files with 6 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
require 'spec_helper'
feature 'url access' do
before do
UserFixture.reset_all_users
@normal_user = UserFixture.normal_user
end
scenario 'attack', :js => true do
login @normal_user
visit '/admin/1/dashboard'
pending(:if => verifying_fixed?) { current_path.should == '/admin/1/dashboard' }
end
end