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
[client] | |
host = 127.0.0.1 | |
user = ftlines | |
password = ftlines | |
protocol = tcp | |
[mysql] | |
auto-rehash | |
prompt = [\d]> | |
safe-updates |
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
Plug 'airblade/vim-gitgutter' | |
Plug 'airblade/vim-rooter' | |
Plug 'artur-shaik/vim-javacomplete2' | |
Plug 'bling/vim-airline' | |
Plug 'mattn/gist-vim' |
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
!1 Frequenty Asked Questions about FitNesse | |
!2 How do I get started running FitNesse? | |
!2 Can I test XXXXX? | |
The answer is probably yes, with a number of caveats. | |
First Off, FitNesse doesn't come with any tools to specifically interact with any system that you would want to test. The idea with FitNesse is that the code that connects to your system, known as fixtures, are written custom to the interaction at hand. FitNesse is just the framework for describing tests in a human-readable format that can be executed to ensure the system under test behaves the way it is known to work. |
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 'rubygems' | |
require 'nokogiri' | |
require 'open-uri' | |
require 'sqlite3' | |
require_relative 'push_notifier.rb' | |
logsPageUrl = "http://192.168.100.1/cmLogsData.htm" | |
def parse_row(row) |
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_relative 'jira_lister.rb' | |
require 'yaml' | |
config_file = YAML.load_file(File.dirname(__FILE__) + "/jira_config.yaml") | |
jira = JiraLister.new(config_file) | |
# Show all projects | |
puts jira.generate_jira_list('assignee="tester" and status in ("Needs QA Review")', "JIRAs to DO") | |
puts jira.generate_jira_list('filter = "Tested Yesterday" AND ("Primary Assignee" = tester OR "Primary Tester" = tester)', "JIRAs Tested Yesterday") |
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
\b([A-Z][a-z_]+[A-Z][a-zA-Z_]*[a-zA-Z]*\b) |
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
alias svnurl="svn info | grep 'URL:.*' -o | grep 'https:.*' -o | pbcopy" |
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
cd ~/Dropbox/daily | |
file="work_log.txt"; | |
if [ ! -e $file ] | |
then | |
touch $file; | |
fi | |
time=`echo $(date +"%B %e, %Y at %I:%M%p")` |
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
Feature: Simple Multiplication | |
Scenario: Multiplying Two Numbers | |
Given I launch the app | |
Then I should see a Result of 0 | |
When I enter 75 | |
And I enter 3 | |
And I tap * | |
Then I should see a Result of 225 |
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
Then /^I should see a Result of (\d+)$/ do |result| | |
list_of_text_contents = frankly_map( "view:'UITextField' marked:'Result'", "text" ) | |
list_of_text_contents.should have(1).item # make sure we only matched one view with our selector | |
list_of_text_contents.first.should == result | |
end | |
When /^I enter (\d+)$/ do |value| | |
value.each_char do |number| | |
touch "view:'UIButton' marked:'#{number}button" | |
end |
NewerOlder