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
require 'spec_helper' | |
describe 'Jasmine suite', :js do | |
def run_jasmine_tests | |
visit '/jasmine' | |
Timeout.timeout(10) do | |
sleep 0.25 while page.has_css?('.runningAlert') | |
end | |
end |
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
%w(a e i o u).map {|x| | |
['', 'a', 'e', 'i', 'o', 'u'].map {|y| | |
['', 'n', 'ng'].map {|z| | |
if (x!=y) | |
%w(l ch).map {|a| | |
a + x + y + z | |
} | |
else | |
nil | |
end |