29 lines
734 B
Gherkin
29 lines
734 B
Gherkin
Feature: File Operations
|
|
As a developer
|
|
I want file operations to work correctly
|
|
So that dataset processing handles files properly
|
|
|
|
Scenario: Decompress bz2 file
|
|
Given a compressed bz2 file
|
|
When I decompress the file
|
|
Then the file should be decompressed successfully
|
|
|
|
Scenario: Decompress gz file
|
|
Given a compressed gz file
|
|
When I decompress the file
|
|
Then the file should be decompressed successfully
|
|
|
|
Scenario: Remove directory
|
|
Given a directory with files
|
|
When I remove the directory
|
|
Then the directory should be deleted
|
|
|
|
Scenario: Get directory for dataset
|
|
Given a base directory
|
|
When I get dataset directory for "wordnet"
|
|
Then the directory path should be created
|
|
|
|
|
|
|
|
|