Updated Branches: refs/heads/master 15177dc1b -> ee245fec0
BIGTOP-967. package removal is currently missing from our package tests Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/ee245fec Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/ee245fec Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/ee245fec Branch: refs/heads/master Commit: ee245fec02ef99415b9253bae9bec5ae5da048e5 Parents: 15177dc Author: Roman Shaposhnik <[email protected]> Authored: Fri May 3 17:29:13 2013 -0700 Committer: Roman Shaposhnik <[email protected]> Committed: Fri May 3 17:30:18 2013 -0700 ---------------------------------------------------------------------- .../packagesmoke/TestPackagesBasicsWithRM.groovy | 36 +++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/ee245fec/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasicsWithRM.groovy ---------------------------------------------------------------------- diff --git a/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasicsWithRM.groovy b/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasicsWithRM.groovy new file mode 100644 index 0000000..913f61b --- /dev/null +++ b/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasicsWithRM.groovy @@ -0,0 +1,36 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * <p/> + * http://www.apache.org/licenses/LICENSE-2.0 + * <p/> + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.bigtop.itest.packagesmoke + +import org.apache.bigtop.itest.junit.OrderedParameterized +import org.junit.runner.RunWith +import org.apache.bigtop.itest.junit.OrderedParameterized.RunStage +import org.junit.Test + +@RunWith(OrderedParameterized.class) +class TestPackagesBasicsWithRM extends TestPackagesBasics { + public TestPackagesBasicsWithRM(String pkgName, Node pkgGolden) { + super(pkgName, pkgGolden); + } + + @RunStage(level=10) + @Test + void testPackageRemove() { + checkRemoval(); + } +}
