We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931f26c commit 5bb3e7cCopy full SHA for 5bb3e7c
1 file changed
Font.tests.ps1
@@ -0,0 +1,11 @@
1
+describe Font {
2
+ it 'Gets fonts' {
3
+ Get-Font
4
+ }
5
+
6
+ it 'Can import a font' {
7
+ $importedFont = Get-Font | Get-Random | Import-Font
8
+ $importedFont.FontFamily | Should -BeLike '*'
9
+ $importedFont.UnitsPerEm | Should -BeGreaterThan 0
10
11
+}
0 commit comments