mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00

* Renames Spectre.Cli to Spectre.Console.Cli. * Now uses Verify with Spectre.Console.Cli tests. * Removes some duplicate definitions. Closes #168
13 lines
355 B
C#
13 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Spectre.Console.Testing
|
|
{
|
|
public sealed class DummySpinner1 : Spinner
|
|
{
|
|
public override TimeSpan Interval => TimeSpan.FromMilliseconds(100);
|
|
public override bool IsUnicode => true;
|
|
public override IReadOnlyList<string> Frames => new List<string> { "*", };
|
|
}
|
|
}
|