Cześć,
mam w Behat3 taki scenariusz:
Scenario: Get task
Given Entity "task" exists:
| property | value |
| title | Hello |
| description | Lorem ipsum dolor sit amet || #include <avr/io.h> | |
| #include <util/delay.h> | |
| int main(void) { | |
| DDRB = 0b11111111; | |
| while (1) { | |
| PORTB = 0b11111111; | |
| _delay_ms(1000); | |
| PORTB = 0b00000000; |
Cześć,
mam w Behat3 taki scenariusz:
Scenario: Get task
Given Entity "task" exists:
| property | value |
| title | Hello |
| description | Lorem ipsum dolor sit amet || find ./src/ -type f -exec sed -i 's/CO/NACO/g' {} \; | |
| find ./src/ -type f -exec sed -i 's/CO/NACO/g' {} \; | |
| find ./src/ -name "*CO*" | xargs rename 's/CO/NACO/' |
| #!/bin/bash | |
| ## Usage | |
| ## database.sh /path/parameters.yml | |
| ## or if you are in symfony root directory | |
| ## database.sh | |
| if [ -z $1 ] | |
| then | |
| if [ -f "app/config/parameters.yml" ] |
| #!/bin/bash | |
| # wget https://gist.github.com/drymek/6896918/raw -O /usr/share/git-core/templates/hooks/post-checkout | |
| # chmod +x /usr/share/git-core/templates/hooks/post-checkout | |
| # git init # to reload current git repository | |
| PREV_COMMIT=$1 | |
| POST_COMMIT=$2 | |
| # MacOS Colors | |
| NOCOLOR='\x1B[0m' |