This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Cucumber Scenario | |
@wip | |
Scenario: Login with correct details | |
Given a user named "brent" exists | |
When I go to login | |
And I fill in "Username" with "brent" | |
And I fill in "Password" with "screech" | |
And I press "Log In" | |
# And show me the page |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@user = User.new({ | |
email: "user#{n}@7ey.es", | |
first_name: Forgery(:name).first_name, | |
last_name: Forgery(:name).last_name, | |
password: 'letmein', | |
remember_me: true, | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ACL Tables */ | |
CREATE TABLE acos ( | |
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, | |
parent_id INT DEFAULT NULL, | |
model VARCHAR(255) DEFAULT '', | |
foreign_key INT UNSIGNED DEFAULT NULL, | |
alias VARCHAR(255) DEFAULT '', | |
lft INT DEFAULT NULL, | |
rght INT DEFAULT NULL |