Skip to content

Commit

Permalink
Updated support to v3.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertHajbok committed Jan 31, 2018
1 parent 7c26360 commit d077e49
Show file tree
Hide file tree
Showing 109 changed files with 16,899 additions and 19,485 deletions.
6 changes: 3 additions & 3 deletions FullCalendarMVC/FullCalendar.MVC4/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("FullCalendar.MVC4")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]
[assembly: AssemblyVersion("1.0.5.0")]
[assembly: AssemblyFileVersion("1.0.5.0")]
6 changes: 3 additions & 3 deletions FullCalendarMVC/FullCalendar.MVC5/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("FullCalendar.MVC5")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]
[assembly: AssemblyVersion("1.0.5.0")]
[assembly: AssemblyFileVersion("1.0.5.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -457,13 +457,29 @@ public void GetPropertyParser_TimeFormatIsSent_StringPropertyParserIsCreated()
}

[Test]
public void GetPropertyParser_ColumnFormatIsSent_StringPropertyParserIsCreated()
public void GetPropertyParser_ColumnHeaderFormatIsSent_StringPropertyParserIsCreated()
{
PropertyInfo property = typeof(FullCalendarParameters).GetProperties().Single(x => x.Name == nameof(FullCalendarParameters.ColumnFormat));
PropertyInfo property = typeof(FullCalendarParameters).GetProperties().Single(x => x.Name == nameof(FullCalendarParameters.ColumnHeaderFormat));
IPropertyParser propertyParser = PropertyParserFactory.GetPropertyParser(property);
propertyParser.Should().BeOfType<StringPropertyParser>();
}

[Test]
public void GetPropertyParser_ColumnHeaderTextIsSent_FunctionPropertyParserIsCreated()
{
PropertyInfo property = typeof(FullCalendarParameters).GetProperties().Single(x => x.Name == nameof(FullCalendarParameters.ColumnHeaderText));
IPropertyParser propertyParser = PropertyParserFactory.GetPropertyParser(property);
propertyParser.Should().BeOfType<FunctionPropertyParser>();
}

[Test]
public void GetPropertyParser_ColumnHeaderHtmlIsSent_FunctionPropertyParserIsCreated()
{
PropertyInfo property = typeof(FullCalendarParameters).GetProperties().Single(x => x.Name == nameof(FullCalendarParameters.ColumnHeaderHtml));
IPropertyParser propertyParser = PropertyParserFactory.GetPropertyParser(property);
propertyParser.Should().BeOfType<FunctionPropertyParser>();
}

[Test]
public void GetPropertyParser_TitleFormatIsSent_StringPropertyParserIsCreated()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("FullCalendar.Tests")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
Loading

0 comments on commit d077e49

Please sign in to comment.