Skip to content

Commit

Permalink
add test to make sure case-insensitivity works
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Aug 5, 2020
1 parent aab3791 commit 9c979db
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .ci/pipeline-library/src/test/prChanges.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,17 @@ class PrChangesTest extends KibanaBasePipelineTest {

assertFalse(prChanges.areChangesSkippable())
}

@Test
void 'areChangesSkippable() with plugin readme changes'() {
props([
githubPrs: [
getChanges: { [
[filename: 'src/plugins/foo/README.asciidoc'],
] },
],
])

assertFalse(prChanges.areChangesSkippable())
}
}

0 comments on commit 9c979db

Please sign in to comment.