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
| # Create a Test Suite for MorganWebDev.com | |
| require 'test/unit' | |
| require 'rubygems' | |
| require 'selenium-webdriver' | |
| class TestMorganWebDev < Test::Unit::TestCase | |
| def setup | |
| @driver = Selenium::WebDriver.for :firefox | |
| @base_url = "http://www.morganwebdev.com/" | |
| @driver.manage.timeouts.implicit_wait = 30 |
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
| # Write a long love poem to your fiancee | |
| # Print the first line | |
| puts "I love you" | |
| # Print the second line | |
| puts "You're beautiful" | |
| # Print the third line | |
| puts "You're smart" |
OlderNewer