Skip to content

Commit

Permalink
Adding some additional test cases to account for the Azure config
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Oct 15, 2016
1 parent fd06ec1 commit d0e10cf
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ func TestAccAzureRMEventHubNamespaceCapacity_validation(t *testing.T) {
Value: 2,
ErrCount: 0,
},
{
Value: 3,
ErrCount: 1,
},
{
Value: 4,
ErrCount: 0,
Expand Down Expand Up @@ -56,6 +60,10 @@ func TestAccAzureRMEventHubNamespaceSku_validation(t *testing.T) {
Value: "Standard",
ErrCount: 0,
},
{
Value: "Premium",
ErrCount: 1,
},
{
Value: "Random",
ErrCount: 1,
Expand Down

0 comments on commit d0e10cf

Please sign in to comment.