Commit fb1c85061eae848e68244a1e3c56e1602584f08a

Authored by Dmitriy Zaporozhets
1 parent 54f40301

remove unused spec

features/project/project.feature
... ... @@ -18,6 +18,3 @@ Feature: Project Feature
18 18 And change project settings
19 19 And I save project
20 20 Then I should see project with new settings
21   -
22   - # @wip
23   - # Scenario: I visit attachments
... ...
spec/features/security/project_access_spec.rb
... ... @@ -228,19 +228,5 @@ describe "Application access" do
228 228 it { should be_denied_for :user }
229 229 it { should be_denied_for :visitor }
230 230 end
231   -
232   - describe "GET /project_code/files" do
233   - pending("ProjectsController#files have been deleted.") do
234   -
235   - subject { files_project_path(project) }
236   -
237   - it { should be_allowed_for master }
238   - it { should be_allowed_for reporter }
239   - it { should be_denied_for :admin }
240   - it { should be_denied_for guest }
241   - it { should be_denied_for :user }
242   - it { should be_denied_for :visitor }
243   - end
244   - end
245 231 end
246 232 end
... ...