Sha256: b7575328ef547523679a40e4536a991bd744ce93e970694e1265bb5a87536726
Contents?: true
Size: 484 Bytes
Versions: 9
Compression:
Stored size: 484 Bytes
Contents
Describe 'SQL Server 2016 minimal configuration' { Context "SQL Server" { It 'MSSQL service is running' { (get-service MSSQLSERVER).Status | Should BeLike "Running" } It 'MSSQL AGENT service is running' { (get-service SQLSERVERAGENT).Status | Should BeLike "Running" } } Context "SQL Tools" { It 'ssms.exe is installed' { get-command ssms | Should BeLike "*ssms.exe*" } } }
Version data entries
9 entries across 9 versions & 1 rubygems