Commit 69043814 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix leave_group_spec.rb

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent a67ff8e8
...@@ -18,7 +18,7 @@ feature 'Groups > Members > Leave group', feature: true do ...@@ -18,7 +18,7 @@ feature 'Groups > Members > Leave group', feature: true do
expect(current_path).to eq(dashboard_groups_path) expect(current_path).to eq(dashboard_groups_path)
expect(page).to have_content left_group_message(group) expect(page).to have_content left_group_message(group)
expect(group.members).not_to include(user) expect(group.users).not_to include(user)
end end
scenario 'guest leaves the group as last member' do scenario 'guest leaves the group as last member' do
...@@ -29,7 +29,7 @@ feature 'Groups > Members > Leave group', feature: true do ...@@ -29,7 +29,7 @@ feature 'Groups > Members > Leave group', feature: true do
expect(current_path).to eq(dashboard_groups_path) expect(current_path).to eq(dashboard_groups_path)
expect(page).to have_content left_group_message(group) expect(page).to have_content left_group_message(group)
expect(group.members).not_to include(user) expect(group.users).not_to include(user)
end end
scenario 'owner leaves the group if they is not the last owner' do scenario 'owner leaves the group if they is not the last owner' do
...@@ -41,7 +41,7 @@ feature 'Groups > Members > Leave group', feature: true do ...@@ -41,7 +41,7 @@ feature 'Groups > Members > Leave group', feature: true do
expect(current_path).to eq(dashboard_groups_path) expect(current_path).to eq(dashboard_groups_path)
expect(page).to have_content left_group_message(group) expect(page).to have_content left_group_message(group)
expect(group.members).not_to include(user) expect(group.users).not_to include(user)
end end
scenario 'owner can not leave the group if they is a last owner' do scenario 'owner can not leave the group if they is a last owner' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment