Advertisement
4tolexx

study csv export and implementation

Apr 1st, 2025 (edited)
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Feature: Export Studies as CSV
  2.  
  3.   Background:
  4.     Given a study "Study 1" with:
  5.       | id             | 1        |
  6.       | state          | building |
  7.       | locked_version | 1        |
  8.     And a study "Study 2" with:
  9.       | id             | 2          |
  10.       | state          | production |
  11.       | locked_version | 2          |
  12.  
  13.   Scenario: Export studies list as csv
  14.     When I sign in as a user with all permissions
  15.     And I browse to studies list
  16.     Then I see "Study 1"
  17.     And I see "Study 2"
  18.     When I click "CSV"
  19.     Then I download a CSV with content:
  20.       | Id | Name    | State      | Locked version | Created at | Updated at |
  21.       | 1  | Study 1 | building   | 1              | <ISO_DATE> | <ISO_DATE> |
  22.       | 2  | Study 2 | production | 2              | <ISO_DATE> | <ISO_DATE> |
  23.  
  24.  
  25.   csv do
  26.     column :id
  27.     column(:name) { |study| study.object.name }
  28.     column(:state) { |study| study.object.state }
  29.     column :locked_version
  30.     column :created_at
  31.     column :updated_at
  32.   end
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement