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
#!/bin/sh | |
WORKING_DIR=work | |
# step 0 - clean up | |
if [ -d $WORKING_DIR ]; then | |
rm -rf $WORKING_DIR | |
fi | |
mkdir $WORKING_DIR |
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
ul { | |
border: 1px solid black; | |
} | |
li { | |
margin-top: 10px; | |
} | |
li:last-child { | |
margin-bottom: 10px; |
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
<div class="hero-unit"> | |
<p>Game of Thrones Selector Fun</p> | |
<ul> | |
<li>Tyrion</li> | |
<li>Jaime</li> | |
<li>Cersei</li> | |
<li>Daenerys</li> | |
</ul> | |
</div> |
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
describe("GetPolicyTerm", function () { | |
var policyTerm; | |
beforeEach(function () { | |
policyTerm = new PolicyTerm(); | |
}); | |
it("should be able to retrieve a policy by policy number", function () { | |
var callback = jasmine.createSpy(); | |
policyTerm.getPolicyTermByPolicyNumber("http://localhost:17186", "2013061401", callback); |