Skip to content
Snippets Groups Projects
Select Git revision
  • 9088892059d6598d3deafe70bfb7f601debe9ea8
  • master default protected
  • release_10.3.0
  • test
  • feature_module_doctorant
  • feature_module_admission
  • feature_fiche_rncp
  • feature_convention_mel_template
  • release_10.2.0
  • release_10.1.1
  • feature_portfolio
  • ameliorations_index_rapporteur
  • feature_flux_diplomation
  • feature_formation_export_xls
  • feature_fichiers
  • api_inscription_admin
  • feature_module_unicaen_maintenance_mode
  • dev
  • feature_renderer_template_variables
  • feature_notif_forcage_correc
  • feature_wf_rapport_activite
  • 10.2.1
  • 10.2.0
  • 10.1.0
  • 10.0.3
  • 10.0.2
  • 10.0.1
  • 10.0.0
  • 9.4.1
  • 9.4.0
  • 9.3.1
  • 9.3.0
  • 9.2.1
  • 9.2.0
  • 9.1.1
  • 9.1.0
  • 9.0.1
  • 9.0.0
  • 8.6.0
  • 8.5.1
  • 8.5.0
41 results

Module.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    postfix_mta_spec.rb 541 B
    require 'spec_helper'
    
    describe 'postfix::mta' do
      let (:facts) { {
        :lsbdistcodename => 'wheezy',
        :osfamily        => 'Debian',
      } }
      let :pre_condition do
        "class { 'postfix':
          mydestination => 'bar',
          mynetworks    => 'baz',
          relayhost     => 'foo',
        }"
      end
    
      it { is_expected.to contain_postfix__config('mydestination').with_value('bar') }
      it { is_expected.to contain_postfix__config('mynetworks').with_value('baz') }
      it { is_expected.to contain_postfix__config('relayhost').with_value('foo') }
    end