Remove tests that are no longer valid.

This commit is contained in:
Donald Curtis 2013-12-03 23:05:35 -08:00
parent fe8c32952e
commit 6afe208b3c

View file

@ -7,21 +7,3 @@ Feature: Initialization
Given set travis-archive-alist to archive alist
Then travis-archive-alist should be empty
Scenario: add to archive alist
Given add "test1" to archive alist
Then archive alist should be ("test1")
Given add "test2" to archive alist
Then archive alist should be ("test2" "test1")
Scenario: remove from archive alist
Given add "test1" to archive alist
Given remove "test2" from archive alist
Then archive alist should be ("test1")
Given add "test2" to archive alist
Then archive alist should be ("test2" "test1")
Given remove "test1" from archive alist
Then archive alist should be ("test2")