diff options
author | Andrew8xx8 <avk@8xx8.ru> | 2013-03-25 02:17:38 +0400 |
---|---|---|
committer | Andrew8xx8 <avk@8xx8.ru> | 2013-03-25 02:19:40 +0400 |
commit | 8f08fbfd9f768b885c631bdc8bc8ad202c6827a0 (patch) | |
tree | dfbdebbc19d0de48b42b47e5f1b6435db800d0a5 /features/steps/shared | |
parent | 4be12be62a9dc30faecff139684f7537f0726d45 (diff) | |
download | gitlab-ce-8f08fbfd9f768b885c631bdc8bc8ad202c6827a0.tar.gz |
Tests for personal snippets added
Diffstat (limited to 'features/steps/shared')
-rw-r--r-- | features/steps/shared/paths.rb | 8 | ||||
-rw-r--r-- | features/steps/shared/snippet.rb | 19 |
2 files changed, 27 insertions, 0 deletions
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb index 42004df426e..08da0908384 100644 --- a/features/steps/shared/paths.rb +++ b/features/steps/shared/paths.rb @@ -267,6 +267,14 @@ module SharedPaths visit project_snippets_path(project) end + Given 'I visit snippets page' do + visit snippets_path + end + + Given 'I visit new snippet page' do + visit new_snippet_path + end + def root_ref @project.repository.root_ref end diff --git a/features/steps/shared/snippet.rb b/features/steps/shared/snippet.rb new file mode 100644 index 00000000000..32cc68c2852 --- /dev/null +++ b/features/steps/shared/snippet.rb @@ -0,0 +1,19 @@ +module SharedProject + And 'I have public "Personal snippet one" snippet' do + create(:personal_snippet, + title: "Personal snippet one", + content: "Test content", + file_name: "snippet.rb", + private: false, + author: current_user) + end + + And 'I have private "Personal snippet private" snippet' do + create(:personal_snippet, + title: "Personal snippet private", + content: "Provate content", + file_name: "private_snippet.rb", + private: true, + author: current_user) + end +end |