diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-12 21:36:38 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-12 21:36:38 +0300 |
commit | 11728851bf0b1b06e14858b08b1afcec44ec3d46 (patch) | |
tree | c2025523bed520822963ef9442cd7915a2e5d5ff /features/steps | |
parent | 86fa07402467272a28ed7983268f9012eb85879d (diff) | |
download | gitlab-ce-11728851bf0b1b06e14858b08b1afcec44ec3d46.tar.gz |
Fix blob highlight tests
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features/steps')
-rw-r--r-- | features/steps/shared/paths.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb index d36ff7e3884..449f2f9c5ef 100644 --- a/features/steps/shared/paths.rb +++ b/features/steps/shared/paths.rb @@ -264,6 +264,10 @@ module SharedPaths visit project_blob_path(@project, File.join(ValidCommit::ID, ValidCommit::BLOB_FILE_PATH)) end + step 'I visit "Gemfile.lock" file in repo' do + visit project_blob_path(@project, File.join(root_ref, 'Gemfile.lock')) + end + step 'I visit project source page for "8470d70"' do visit project_tree_path(@project, "8470d70") end |