def test_has_relationship_returns_false_for_missing_relationship(self):

        env = self.mockEnvironmentDeploy

        config = Config(env)

        self.assertFalse(config.has_relationship('missing'))
    def test_has_relationship_returns_true_for_existing_relationship(self):

        env = self.mockEnvironmentDeploy

        config = Config(env)

        self.assertTrue(config.has_relationship('database'))