diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-07-26 10:33:42 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-07-26 10:33:42 +0300 |
commit | d3ea53877d689df64db9c68f43e2c08f527b01ed (patch) | |
tree | da717d728adc60c9e0e8e751027bb31eb40c333f /features/explore | |
parent | 974b5a7b2f31f8e7d6b38a45bfd055a40651c945 (diff) | |
download | gitlab-ce-d3ea53877d689df64db9c68f43e2c08f527b01ed.tar.gz |
Tests for trending/starred pages
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features/explore')
-rw-r--r-- | features/explore/projects.feature | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/features/explore/projects.feature b/features/explore/projects.feature index 2ed9707ec39..9827ebe3e57 100644 --- a/features/explore/projects.feature +++ b/features/explore/projects.feature @@ -100,3 +100,17 @@ Feature: Explore Projects Feature And I visit "Internal" merge requests page And project "Internal" has "Feature implemented" open merge request Then I should see list of merge requests for "Internal" project + + Scenario: Trending page + Given I sign in as a user + And project "Community" has comments + When I visit the explore trending projects + Then I should see project "Community" + And I should not see project "Internal" + And I should not see project "Enterprise" + + Scenario: Most starred page + Given I sign in as a user + When I visit the explore starred projects + Then I should see project "Community" + And I should see project "Internal" |