# Mark command as a test export alias "attr test" = echo # Mark a test command to be ignored export alias "attr ignore" = echo # Mark a command to be run before each test export alias "attr before-each" = echo # Mark a command to be run once before all tests export alias "attr before-all" = echo # Mark a command to be run after each test export alias "attr after-each" = echo # Mark a command to be run once after all tests export alias "attr after-all" = echo