Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions spec/group_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
require 'spec_helper'
RSpec.describe Vinyldns::API::Group do
first_group = Vinyldns::API::Group.list_my_groups['groups'].first

describe Vinyldns::API::Group do

let(:first_group) do
# A group is expected to exist for now
Vinyldns::API::Group.list_my_groups['groups'].first
end

describe '.create' do
it 'can POST & receives 409 Conflict connecting to an already existing group' do
Expand Down