Defect #31657 » 31657.patch
| Gemfile | ||
|---|---|---|
| 81 | 81 |
gem "ffi", platforms: [:mingw, :x64_mingw, :mswin] |
| 82 | 82 |
# For running system tests |
| 83 | 83 |
gem 'puma', '~> 3.7' |
| 84 |
gem "capybara", '~> 2.13'
|
|
| 84 |
gem "capybara", '~> 3.25.0'
|
|
| 85 | 85 |
gem "selenium-webdriver" |
| 86 | 86 |
# RuboCop |
| 87 | 87 |
gem 'rubocop', '~> 0.72.0' |
| test/system/issues_import_test.rb | ||
|---|---|---|
| 28 | 28 |
def test_import_issues_without_failures |
| 29 | 29 |
log_user('jsmith', 'jsmith')
|
| 30 | 30 |
visit '/issues' |
| 31 |
find('div.contextual>span.drdn').click
|
|
| 31 | 32 |
click_on 'Import' |
| 32 | 33 | |
| 33 | 34 |
attach_file 'file', Rails.root.join('test/fixtures/files/import_issues.csv')
|