Skip to content

Commit

Permalink
chore: added commits fixture for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Estilles committed Apr 20, 2015
1 parent e52e3ec commit b7d16b6
Showing 1 changed file with 112 additions and 0 deletions.
112 changes: 112 additions & 0 deletions test/fixtures/commits.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
exports.withoutBreaking = [
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did one thing',
body: '',
type: 'fix',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 2 thing',
body: '',
type: 'feat',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 3 thing',
body: '',
type: 'refact',
component: '$scope' },
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 4 thing',
body: '',
type: 'chore',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 5 thing',
body: '',
type: 'chore',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 6 thing',
body: '',
type: 'chore',
component: '$scope'
}
];

exports.withBreaking = [
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did one thing',
body: '',
type: 'fix',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 2 thing',
body: '',
type: 'feat',
component: '$scope',
breaking: true
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 3 thing',
body: '',
type: 'refact',
component: '$scope' },
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 4 thing',
body: '',
type: 'chore',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 5 thing',
body: '',
type: 'chore',
component: '$scope'
},
{
closes: [],
breaks: [],
hash: '1d4f604363094d4eee3b4d7b1ca01133edaad344',
subject: 'did 6 thing',
body: '',
type: 'chore',
component: '$scope'
}
];

0 comments on commit b7d16b6

Please sign in to comment.