-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from sackfield/fix-remaining-issues
Fix Remaining FOSS issues
- Loading branch information
Showing
11 changed files
with
256 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.pyc | ||
/*.egg-info | ||
build/ | ||
dist/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
Contributions are welcomed. Open a pull-request or an issue. | ||
|
||
This project adheres to the [Open Code of Conduct][code-of-conduct]. By participating, you are expected to honor this code. | ||
|
||
[code-of-conduct]: https://github.com/spotify/code-of-conduct/blob/master/code-of-conduct.md |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from setuptools import setup | ||
|
||
setup(name='testinggame', | ||
version='1.0.0', | ||
description='A script for counting the number of tests per developer', | ||
url='http://github.com/spotify/testing-game', | ||
author='Will Sackfield', | ||
author_email='[email protected]', | ||
license='Apache', | ||
packages=['testinggame'], | ||
zip_safe=False, | ||
entry_points={ | ||
'console_scripts': [ | ||
'testinggame = testinggame:_main' | ||
] | ||
}) |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.spotify.thing; | ||
|
||
public class ExampleTest { | ||
@Before | ||
public void setUp() throws Exception { | ||
} | ||
|
||
@Test | ||
public void testExample() { | ||
Assert.assertEquals(0, 0); | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#import <SpotifyTestUtils/SPTTestCase.h> | ||
|
||
@interface SPTTestExampleTest : SPTTestCase | ||
|
||
@end | ||
|
||
@implementation SPTTestExampleTest | ||
|
||
- (void)setUp | ||
{ | ||
[super setUp]; | ||
} | ||
|
||
- (void)tearDown | ||
{ | ||
[super tearDown]; | ||
} | ||
|
||
- (void)testExample | ||
{ | ||
XCTAssertEqual(0, 0); | ||
} | ||
|
||
@end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#import <XCTest/XCTestCase.h> | ||
|
||
#include <string> | ||
|
||
@interface XCTestExampleTest : XCTestCase | ||
|
||
@end | ||
|
||
@implementation XCTestExampleTest | ||
|
||
- (void)setUp | ||
{ | ||
[super setUp]; | ||
} | ||
|
||
- (void)tearDown | ||
{ | ||
[super tearDown]; | ||
} | ||
|
||
- (void)testExample | ||
{ | ||
std::string string1("thing"); | ||
std::string string2("thing"); | ||
XCTAssertEqual(string1, string2) | ||
} | ||
|
||
@end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include <boost/optional.hpp> | ||
#include <boost/test/unit_test.hpp> | ||
|
||
BOOST_AUTO_TEST_SUITE(spotify) | ||
BOOST_AUTO_TEST_SUITE(testinggame) | ||
|
||
BOOST_AUTO_TEST_CASE(BoostTestExample) { | ||
BOOST_CHECK_EQUAL(0, 0); | ||
} | ||
|
||
BOOST_AUTO_TEST_SUITE_END() | ||
BOOST_AUTO_TEST_SUITE_END() |
Oops, something went wrong.