Skip to content

Commit

Permalink
spec: set broken specs pending and document them
Browse files Browse the repository at this point in the history
  • Loading branch information
eins78 committed Dec 7, 2015
1 parent 2b2665b commit 6fd90cd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions spec/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Manual Checks

Some specs are broken and need to be manually checked (on `staging`)
as the v2 releases are very rare and it would take more time to fix the specs.

- Homepage (Welcome page) can successfully be loaded as guest user
- MediaEntry: Edit MetaData (single): All types of MetaData can be changed at once
- open entry with lots of MetaData, click Edit
- change each type (Text, Keyword, Person, User, Group, …)
- Save and verify result.
3 changes: 2 additions & 1 deletion spec/controllers/application_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

describe "as guest user" do
it "should respond with success" do
pending 'broken, see https://github.com/zhdk/madek/blob/master/spec/README.md'
get :root, {}, {}
expect(response).to be_success
end
Expand All @@ -29,5 +30,5 @@
expect(response).to redirect_to(my_dashboard_path)
end
end

end
3 changes: 3 additions & 0 deletions spec/features/meta_data/meta_data_change_all_fields_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
end

scenario 'Changing all meta-data fields of a media entry', browser: :firefox do

pending 'broken, see https://github.com/zhdk/madek/blob/master/spec/README.md'

@current_user = sign_in_as 'normin'

@media_entry = FactoryGirl.create :media_entry_with_image_media_file, user: @current_user
Expand Down

0 comments on commit 6fd90cd

Please sign in to comment.